home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / iputils-tracepath.postinst < prev    next >
Text File  |  2007-12-10  |  274b  |  14 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. if [ "$1" = configure ]; then
  6.     update-alternatives \
  7.         --install /usr/bin/traceroute6 traceroute6 /usr/bin/traceroute6.iputils 100 \
  8.         --slave /usr/share/man/man8/traceroute6.8.gz traceroute6.8.gz /usr/share/man/man8/traceroute6.iputils.8.gz
  9. fi
  10.  
  11.  
  12.  
  13. exit 0
  14.